home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 32 / Amiga Format AFCD32 (Nov 1998, Issue 117).iso / -seriously_amiga- / programming / other / cgraphx / c / examples / dmakefile next >
Makefile  |  1998-08-10  |  275b  |  12 lines

  1. CGXDIR = /
  2. FLAGS  = -3.1 -mRR -mi -proto -I$(CGXDIR)include
  3. LIBS   = -L$(CGXDIR)dlib -lcybergraphics
  4.  
  5. all : ScreenModeReq Window
  6.  
  7. ScreenModeReq : ScreenModeReq.c
  8.       dcc $(FLAGS) -o %(left) %(right) $(LIBS)
  9.  
  10. Window : Window.c
  11.       dcc $(FLAGS) -o %(left) %(right) $(LIBS)
  12.